This forum is closed to new posts and
responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:
I know this is way too late to solve your problem, but here it is for others searching the forum:
Set objHttp = CreateObject("Msxml2.serverXMLHTTP.3.0")
'this basically ignores certificate errors but
'at least your transaction will be encrypted
objHttp.setOption "2","13056"
'if you have a proxy server that you need to set
objHttp.setProxy "2","proxy.server.name",""
'you may have to use Msxml version 4.0 ("Msxml.serverXMLHTTP.4.0")
objHttp.open "POST", url, False,"uname","pw"
objHttp.setRequestHeader "MIME-VERSION", "1.0"
objHttp.setRequestHeader "Content-type", "text/html"
objHttp.setRequestHeader "CONTENT-TRANSFER-ENCODING", "text"
objHttp.send(req)
NOTE
Feedback response number WEBB8DEMDQ created by ~Tip Kirepulakoi on 01/24/2011